home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / freeWAIS-sf-1.1 / regexp / Makefile.in < prev    next >
Encoding:
Makefile  |  1994-12-21  |  1.5 KB  |  74 lines

  1. ############################ -*- Mode: Makefile -*- ###########################
  2. ## Makefile.in --
  3. ## ITIID           : $ITI$ $Header $__Header$
  4. ## Author          : Ulrich Pfeifer
  5. ## Created On      : Mon Mar 21 15:19:18 1994
  6. ## Last Modified By: Ulrich Pfeifer
  7. ## Last Modified On: Thu Dec 22 15:55:06 1994
  8. ## Update Count    : 24
  9. ## Status          : Unknown, Use with caution!
  10. ###############################################################################
  11. prefix = /usr/local/wais
  12. exec_prefix = $(prefix) 
  13. VPATH = @srcdir@
  14.  
  15.            srcdir = @srcdir@
  16.                RM = rm -f
  17.                AR = ar cq
  18.            RM_CMD = $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut
  19.                CC = @CC@
  20.            CFLAGS = @CFLAGS@
  21.              DEFS = @DEFS@    
  22.          CPPFLAGS =
  23.            RANLIB = @RANLIB@
  24.              SRCS = regexp.c regerror.c regsub.c try.c
  25.              OBJS = regexp.o regerror.o regsub.o
  26.  
  27. .c.o:
  28.     $(CC) -c $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) $<
  29.  
  30.  
  31. all: libregexp.a
  32.  
  33. try: try.o libregexp.a
  34.     $(RM) $@
  35.     $(CC)  $(LDFLAGS) -o $@ try.o libregexp.a $(LIBS)
  36.  
  37. clean::
  38.     $(RM) try
  39.  
  40. test: try tests
  41.     @echo 'No news is good news...'
  42.     try <tests
  43.  
  44. veryclean:: clean
  45.     $(RM) try libregexp.a
  46.  
  47. libregexp.a: $(OBJS)
  48.     $(RM) $@
  49.     $(AR) $@ $(OBJS)
  50.     $(RANLIB) $@
  51.  
  52. clean::
  53.     $(RM_CMD) "#"*
  54.  
  55. Makefile:
  56.     $(SHELL) ../config.status
  57.  
  58. tags::
  59.     $(TAGS) -w *.[ch]
  60.     $(TAGS) -xw *.[ch] > TAGS
  61.  
  62.  
  63. install::
  64.     @echo "install in $(CURRENT_DIR) done"
  65.  
  66. install.man::
  67.     @echo "install.man in $(CURRENT_DIR) done"
  68.  
  69. Makefiles::
  70.  
  71. includes::
  72.  
  73.  
  74.